EmailTemplate

@Serializable
data class EmailTemplate(val subject: String? = null, val body: String? = null)

Used to describe a Pocketbase email template.

Parameters

subject

The subject of the email.

body

The email's body.

Constructors

Link copied to clipboard
constructor(subject: String? = null, body: String? = null)

Properties

Link copied to clipboard
val body: String? = null
Link copied to clipboard
val subject: String? = null